home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Input / WINMidiIn.C < prev    next >
C/C++ Source or Header  |  2005-03-14  |  2KB  |  84 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   WINMidiIn.C - Midi input for Windows
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #include <stdlib.h>
  24. #include <stdio.h>
  25. #include <windows.h>
  26. #include <mmsystem.h>
  27. #include <pthread.h>
  28.  
  29. #include "WINMidiIn.h"
  30. #include "MidiIn.h"
  31. #include "../Misc/Util.h"
  32.  
  33. Master *winmaster;
  34. HMIDIIN winmidiinhandle;
  35. MidiIn midictl;//used to convert the controllers to ZynAddSubFX controllers
  36.  
  37. void CALLBACK WinMidiInProc(HMIDIIN hMidiIn,UINT wMsg,DWORD dwInstance,
  38.         DWORD dwParam1,DWORD dwParam2){
  39.     int midicommand=MidiNull;
  40.     if (wMsg==MIM_DATA){
  41.         int cmd,par1,par2;
  42.         cmd=dwParam1&0xff;
  43.         if (cmd==0xfe) return;
  44.         par1=(dwParam1>>8)&0xff;
  45.         par2=dwParam1>>16;
  46.         //printf("%x %x %x\n",cmd,par1,par2);fflush(stdout);
  47.         int cmdchan=cmd&0x0f;
  48.         int cmdtype=(cmd>>4)&0x0f;
  49.  
  50.         int tmp=0;
  51.             pthread_mutex_lock(&winmaster->mutex);
  52.         switch(cmdtype){
  53.             case(0x8)://noteon
  54.                            winmaster->NoteOff(cmdchan,par1);
  55.                           break;
  56.             case(0x9)://noteoff
  57.                winmaster->NoteOn(cmdchan,par1,par2&0xff);
  58.               break;    
  59.             case(0xb)://controller
  60.               winmaster->SetController(cmdchan,midictl.getcontroller(par1),par2&0xff); 
  61.               break;
  62.             case(0xe)://pitch wheel
  63.                           tmp=(par1+par2*(long int) 128)-8192;
  64.               winmaster->SetController(cmdchan,C_pitchwheel,tmp);
  65.               break;
  66.             default:break;
  67.         };
  68.             pthread_mutex_unlock(&winmaster->mutex);
  69.  
  70.     };
  71. };
  72.  
  73. void InitWinMidi(Master *master_){
  74.     winmaster=master_;
  75.     
  76.     long int result=midiInOpen(&winmidiinhandle,config.cfg.WindowsMidiInId,(DWORD)WinMidiInProc,0,CALLBACK_FUNCTION);
  77.     result=midiInStart(winmidiinhandle);
  78. };
  79.  
  80. void StopWinMidi(){
  81.           midiInStop(winmidiinhandle);
  82.     midiInClose(winmidiinhandle);
  83. };
  84.